@import url("./monaspace.css");

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Monaspace Neon', monospace;
    opacity: 100% !important;
}

html {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    color: var(--fg);
}

main {
    font-style: normal;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
    color: var(--fg);
}

main * {
    padding: 1rem
}

#app {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    z-index: -1000;
    background: var(--bg);
}

#app canvas {
    display: block;
    image-rendering: pixelated;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    margin: auto
}